-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathsetup.py
32 lines (28 loc) · 950 Bytes
/
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
from setuptools import setup
from os import path
from io import open
this_directory = path.abspath(path.dirname(__file__))
def readme():
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
return f.read()
with open(path.join(this_directory, 'requirements.txt'), encoding='utf-8') as f:
requirements = f.read().splitlines()
setup(
name="MolTrans",
packages = ['MolTrans'],
package_data={'MolTrans': ['ESPF/*']},
version="0.0.1",
author="Kexin Huang",
license="BSD-3-Clause",
author_email="kexinhuang@hsph.harvard.edu",
description="",
long_description=readme(),
long_description_content_type="text/markdown",
url="https://github.com/kexinhuang12345/MolTrans",
install_requires=requirements,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
)