|
a |
|
b/setup.py |
|
|
1 |
#!/usr/bin/env python |
|
|
2 |
|
|
|
3 |
import setuptools |
|
|
4 |
|
|
|
5 |
with open("README.md", "r") as fh: |
|
|
6 |
long_description = fh.read() |
|
|
7 |
|
|
|
8 |
setuptools.setup( |
|
|
9 |
name="selfies", |
|
|
10 |
version="2.2.0", |
|
|
11 |
author="Mario Krenn, Alston Lo, Robert Pollice and many other contributors", |
|
|
12 |
author_email="mario.krenn@mpl.mpg.de, alan@aspuru.com", |
|
|
13 |
description="SELFIES (SELF-referencIng Embedded Strings) is a " |
|
|
14 |
"general-purpose, sequence-based, robust representation of " |
|
|
15 |
"semantically constrained graphs.", |
|
|
16 |
long_description=long_description, |
|
|
17 |
long_description_content_type="text/markdown", |
|
|
18 |
url="https://github.com/aspuru-guzik-group/selfies", |
|
|
19 |
packages=setuptools.find_packages(), |
|
|
20 |
classifiers=[ |
|
|
21 |
"Programming Language :: Python :: 3", |
|
|
22 |
"Programming Language :: Python :: 3.7", |
|
|
23 |
"Programming Language :: Python :: 3.8", |
|
|
24 |
"Programming Language :: Python :: 3.9", |
|
|
25 |
"Programming Language :: Python :: 3.10", |
|
|
26 |
"Programming Language :: Python :: 3 :: Only", |
|
|
27 |
"License :: OSI Approved :: Apache Software License", |
|
|
28 |
"Operating System :: OS Independent", |
|
|
29 |
], |
|
|
30 |
python_requires='>=3.7' |
|
|
31 |
) |