-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
40 lines (35 loc) · 1.22 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
36
37
38
39
40
# To upload this file to PyPI you must build it then upload it:
# python setup.py sdist bdist_wheel # build in 'dist' folder
# python-m twine upload dist/* # 'twine' must be installed: 'pip install twine'
import ast
import io
import re
import os
from setuptools import find_packages, setup
DEPENDENCIES = []
EXCLUDE_FROM_PACKAGES = ["contrib", "docs", "tests*"]
CURDIR = os.path.abspath(os.path.dirname(__file__))
with io.open(os.path.join(CURDIR, "README.md"), "r", encoding="utf-8") as f:
README = f.read()
setup(
name = "cpar",
version = "1.0.2",
author = "Gagandeep Singh",
author_email = "gaganmanku96@gmail.com",
description = "This package contains CPAR dataset",
long_description = README,
long_description_content_type = "text/markdown",
url = "https://github.com/gaganmanku96/cpar",
include_package_data = True,
zip_safe = False,
test_suite = "tests.test_project",
packages = ["cpar"],
install_requires = ['numpy', 'tqdm'],
python_requires = ">=3.4",
license = "License :: OSI Approved :: MIT License",
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
)