forked from myhub/tr
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
46 lines (37 loc) · 1011 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/usr/bin/env python
# coding=utf-8
from setuptools import setup, find_packages
import os
import tools
for big_file in tools.BIG_FILES:
tools.join(big_file)
appname = "tr"
version = "1.1.2.0"
with open("README.md", "r") as f:
readme = f.read()
packages = ["tr", "libtorch"]
setup(
name=appname,
version=version,
description=(
'''%s''' % appname
),
author='anycode',
author_email='[email protected]',
maintainer='anycode',
maintainer_email='[email protected]',
packages=packages,
platforms=["all"],
url='https://pypi.org/project/%s/' % appname,
classifiers=[
'Operating System :: OS Independent',
'Programming Language :: Python',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries'
],
install_requires=[
],
include_package_data=True,
long_description=readme,
long_description_content_type='text/markdown'
)