File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 66pre-commit
77deepdiff
88pytest-cov
9+ twine
Original file line number Diff line number Diff line change 2121from setuptools import find_packages , setup
2222
2323# External dependencies
24- requirements = ["requests>=2.24" , "pydantic" , "jinja2" ]
24+ requirements = ["requests>=2.24" , "pydantic>=1.10.4 " , "jinja2>=3.1.2 " ]
2525
2626long_description = ""
2727with open ("README.md" , "r" ) as fh :
2828 long_description = fh .read ()
2929
3030setup (
3131 name = "pyatlan" ,
32- version = "0.0.16 " ,
33- author = "Atlan Pte, Ltd" ,
32+ version = "0.0.17 " ,
33+ author = "Atlan Technologies Pvt Ltd" ,
3434 author_email = "engineering@atlan.com" ,
3535 description = "Atlan Python Client" ,
3636 long_description = long_description ,
4545 ],
4646 packages = find_packages (),
4747 install_requires = requirements ,
48+ extra_requires = {
49+ "dev" : [
50+ "pytest>=7.2.0" ,
51+ "flake8>=5.0.4" ,
52+ "mypy>=0.991" ,
53+ "black>=22.10.0" ,
54+ "types-requests>=2.28.11.4" ,
55+ "pre-commit>=2.20.0" ,
56+ "deepdiff>=6.2.1" ,
57+ "pytest-cov>=4.0.0" ,
58+ "twine>=4.0.2" ,
59+ ]
60+ },
4861 include_package_data = True ,
4962 zip_safe = False ,
50- keywords = "atlas client, apache atlas " ,
63+ keywords = "atlan client" ,
5164 python_requires = ">=3.9" ,
65+ repository = "https://github.com/atlanhq/atlan-python" ,
5266)
You can’t perform that action at this time.
0 commit comments