-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
46 lines (41 loc) · 1.43 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
41
42
43
44
45
46
import setuptools
# with open('requirements.txt') as f:
# requirements = f.read().splitlines()
# with open('requirements_test.txt') as f:
# test_requirements = f.read().splitlines()
with open("README.md", "r") as f:
long_description = f.read()
setuptools.setup(
# Meta
author='Steven Englehardt',
description='Library for parsing ABP filter lists',
long_description=long_description,
long_description_content_type="text/markdown",
name='abp-blocklist-parser',
license='GPL v3',
url='https://github.com/englehardt/abp-blocklist-parser',
version='0.2',
packages=['abp_blocklist_parser'],
# Dependencies
# install_requires=requirements,
# tests_require=test_requirements,
# setup_requires=['setuptools_scm', 'pytest-runner'],
# Packaging
include_package_data=True,
use_scm_version=False,
zip_safe=False,
# Classifiers
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Scientific/Engineering :: Information Analysis'
],
)