1- from setuptools import setup
2- from setuptools import find_packages
1+ from setuptools import find_packages , setup
32
43
54def load (path ):
6- return open (path , 'r' ).read ()
5+ return open (path , "r" ).read ()
76
87
9- numerapi_version = '2.20.8'
8+ numerapi_version = "2.21.0"
109
1110
1211classifiers = [
@@ -17,7 +16,8 @@ def load(path):
1716 "Operating System :: OS Independent" ,
1817 "Programming Language :: Python" ,
1918 "Programming Language :: Python :: 3" ,
20- "Topic :: Scientific/Engineering" ]
19+ "Topic :: Scientific/Engineering" ,
20+ ]
2121
2222
2323if __name__ == "__main__" :
@@ -27,19 +27,21 @@ def load(path):
2727 maintainer = "uuazed" ,
2828 maintainer_email = "uuazed@gmail.com" ,
2929 description = "Automatically download and upload data for the Numerai machine learning competition" ,
30- long_description = load (' README.md' ),
31- long_description_content_type = ' text/markdown' ,
32- url = ' https://github.com/uuazed/numerapi' ,
30+ long_description = load (" README.md" ),
31+ long_description_content_type = " text/markdown" ,
32+ url = " https://github.com/uuazed/numerapi" ,
3333 platforms = "OS Independent" ,
3434 classifiers = classifiers ,
35- license = 'MIT License' ,
36- package_data = {'numerapi' : ['LICENSE' , 'README.md' , "py.typed" ]},
37- packages = find_packages (exclude = ['tests' ]),
38- install_requires = ["requests" , "pytz" , "python-dateutil" ,
39- "tqdm>=4.29.1" , "click>=7.0" , "pandas>=1.1.0" ],
40- entry_points = {
41- 'console_scripts' : [
42- 'numerapi = numerapi.cli:cli'
43- ]
44- },
45- )
35+ license = "MIT License" ,
36+ package_data = {"numerapi" : ["LICENSE" , "README.md" , "py.typed" ]},
37+ packages = find_packages (exclude = ["tests" ]),
38+ install_requires = [
39+ "requests" ,
40+ "pytz" ,
41+ "python-dateutil" ,
42+ "tqdm>=4.29.1" ,
43+ "click>=7.0" ,
44+ "pandas>=1.1.0" ,
45+ ],
46+ entry_points = {"console_scripts" : ["numerapi = numerapi.cli:cli" ]},
47+ )
0 commit comments