Diff of /setup.py [000000] .. [0a9449]

Switch to unified view

a b/setup.py
1
from setuptools import setup
2
from os import path
3
from io import open
4
5
this_directory = path.abspath(path.dirname(__file__))
6
7
def readme():
8
    with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
9
        return f.read()
10
11
with open(path.join(this_directory, 'requirements.txt'), encoding='utf-8') as f:
12
    requirements = f.read().splitlines()
13
14
setup(
15
    name="DeepPurpose", 
16
    packages = ['DeepPurpose'],
17
    package_data={'DeepPurpose': ['ESPF/*']},
18
    version="0.1.5",
19
    author="Kexin Huang, Tianfan Fu",
20
    license="BSD-3-Clause",
21
    author_email="kexinhuang@hsph.harvard.edu",
22
    description="a Deep Learning Based Toolkit for Drug Discovery",
23
    long_description=readme(),
24
    long_description_content_type="text/markdown",
25
    url="https://github.com/kexinhuang12345/DeepPurpose",
26
    install_requires=requirements,
27
    classifiers=[
28
        "Programming Language :: Python :: 3",
29
        "License :: OSI Approved :: BSD License",
30
        "Operating System :: OS Independent",
31
    ],
32
)