-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
36 lines (30 loc) · 1.05 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages, Extension
from setuptools.command.install import install
import subprocess
import os
from os.path import abspath, dirname, join
from glob import glob
this_dir = abspath(dirname(__file__))
with open(join(this_dir, "LICENSE.md")) as f:
license = f.read()
#with open(join(this_dir, "README.md"), encoding="utf-8") as file:
# long_description = file.read()
with open(join(this_dir, "requirements.txt")) as f:
requirements = f.read().split("\n")
#scripts = glob("scripts/*.py") + glob("scripts/*.sh")
setup(
name="n3jet",
version="1.0",
description="",
url="https://github.com/JosephPB/n3jet/",
#long_description_content_type='text/markdown',
#long_description=long_description,
#scripts=scripts,
author="Joseph Bullock",
author_email='[email protected]',
license="MIT license",
install_requires=requirements,
packages = find_packages(exclude=["docs"]),
include_package_data=True
)